home *** CD-ROM | disk | FTP | other *** search
/ Power Bytes: Money & Finance / PowerBytes Money and Finance CD-ROM 01 / PowerBytes Money and Finance CD-ROM 01.iso / Utilities / MacAPL / APL Reference next >
Encoding:
Text File  |  1986-08-26  |  17.0 KB  |  930 lines  |  [TEXT/MACA]

  1.  Using the MacAPL Quick Reference:
  2.  
  3.  By typing an APL symbol, the text will automatically scroll to the
  4.  appropriate definition within the text. If the bell rings when you
  5.  press a key, there is no definition in the text for that symbol. To
  6.  see which symbols are on which keys, use the Key Caps desk accessory.
  7.  
  8.  Scroll from here to see more information.
  9.  
  10.  
  11.  Navigation shortcuts - type a letter to see the corresponding topic:
  12.  
  13.  Space goes to the beginning of the file.
  14.  k     Key Caps accessory
  15.  q     Quadnames
  16.  f     List of system functions
  17.  v     List of system variables
  18.  n     Numeric constants
  19.  s     Symbol name rules
  20.  c     Customizing the reference text
  21.  
  22.  
  23.  These features are unimplemented in version 1.12:  Combination, Decode,
  24.  Drop, Dyadic Format, Transpose, Encode, Factorial, Inner Product,
  25.  Logarithm, Outer Product, Reduction (except on vectors),  Residue,
  26.  Reverse, Rotate, Take, Scan, ┬COPY, ┬CR, ┬EX, ┬FX, ┬LOAD, ┬NL, ┬PCOPY,
  27.  ┬PR, ┬PW, ┬SAVE, ┬STOP, ┬TRACE, ┬VR, ┬XLOAD, Copy command, Expunge
  28.  command, and the first dimension variations of Compression, Catenate,
  29.  Expansion, Reduction, Reverse, Rotate, Scan.
  30.  
  31.  
  32. key caps desk accessory:
  33.  
  34.  This accessory can be very useful in helping you locate the APL symbols.
  35.  When you select "Key Caps" from the apple menu, a keyboard will appear.
  36.  A "Key Caps" menu also appears. Select "APL" from the "Key Caps" menu.
  37.  From now on if you hold down the Shift and/or Option keys, the keyboard
  38.  will display the corresponding APL symbols. You can leave this window
  39.  on the desktop while you work in other windows, as it operates even 
  40.  when it is not the frontmost window.
  41.  
  42.  
  43.  
  44.  
  45. numeric constants:
  46.  
  47.  Numbers are formed from the digits "0" through "9". The period "."
  48.  is used as a decimal point. The negative sign is "¬", which is typed
  49.  as Option-2. It can be distinguished from the hyphen "-" and the
  50.  underline "_" by its raised position. The hyphen is used for negation
  51.  and subtraction and isn't part of a numeric constant. Scientific
  52.  notation is permitted and consists of a number followed by "E" or "e"
  53.  and then a power of 10.
  54.  
  55.  Examples:  1234   12.   .34    2.34   ¬2.5   0.0   ¬12  1E7  1.23e¬5
  56.  
  57.  
  58.  
  59. symbol name rules:
  60.  
  61.  The following characters may be used within a symbol name: "A" through
  62.  "Z", "a" through "z", the delta "·", the locked delta "∩", and digits
  63.  "0" through "9". The symbol name must not start with a digit.
  64.  
  65.  If one or more locked deltas appears in a name, the object is locked
  66.  and invisible but can still be referenced by the name.
  67.  
  68.  System variables and functions have distinguished names which begin with
  69.  the quad "┬" character. You cannot define names which contain the quad.
  70.  
  71.  
  72.  
  73.  
  74.  
  75. customizing this reference text:
  76.  
  77.  You can customize this reference information by editing the file with
  78.  an editor. Save it as text only. Don't use tabs and don't let it get
  79.  longer than 32K. Any lines you add must be blank or start with a space.
  80.  You can make APL use a different reference file by holding down the
  81.  Option key while choosing "APL Reference..." from the menu. A dialog
  82.  box appears allowing you to specify a different file. APL remembers to
  83.  use the new file until it is deleted or moved or you change it again.
  84.  
  85.  
  86.  
  87.  
  88. +  Plus sign
  89.  
  90.     +B  Identity. B is unchanged.
  91.  
  92.    A+B  Addition. A is added to B. A and B must be numeric.
  93.  
  94.  
  95.  
  96. -  Hyphen
  97.  
  98.     -B  Negation. The sign of B is reversed. B must be numeric.
  99.  
  100.    A-B  Subtraction. B is subtracted from A. A and B must be numeric.
  101.  
  102.  
  103.  
  104. ╨  Multiplication sign
  105.  
  106.     ╨B  Direction. If B is negative, ¬1 is returned. If positive, 1
  107.         is returned. If zero, 0 is returned. B must be numeric.
  108.  
  109.    A╨B  Multiplication. A is multiplied by B. A and B must be numeric.
  110.  
  111.  
  112. ¡  Division sign
  113.  
  114.     ¡B  Reciprical. The reciprical of B is returned. B must be numeric.
  115.  
  116.    A¡B  Division. A is divided by B. A and B must be numeric.
  117.  
  118.  
  119.  
  120. *  Asterisk
  121.  
  122.     *B  Power of e. The number e is raised to the B power. B must be numeric.
  123.  
  124.    A*B  Power. A is raised to the B power. A and B must be numeric.
  125.  
  126.  
  127.  
  128. ╡  Vertical bar
  129.  
  130.     ╡B  Absolute. The absolute value of B is returned.
  131.  
  132.    A╡B  Residue. The amount leftover after evenly dividing A into B.
  133.  
  134.  
  135.  
  136. º  Ceiling
  137.  
  138.     ºB  Ceiling. Next higher integer that is ñ B.
  139.  
  140.    AºB  Maximum. Returns the larger of A or B.
  141.  
  142.  
  143.  
  144. ╢  Floor
  145.  
  146.     ╢B  Floor. Next lower integer that is ó B.
  147.  
  148.    A╢B  Minimum. Returns the smaller of A or B.
  149.  
  150.  
  151.  
  152. ╕  Logarithm sign
  153.  
  154.     ╕B  Natural logarithm. Computes the base-e logarithm of B.
  155.  
  156.    A╕B  Logarithm. Computes the base-A logarithm of B.
  157.  
  158.  
  159.  
  160. !  Exclamation point
  161.  
  162.     !B  Factorial. For integer B, the B factorial, else Gamma function of B.
  163.  
  164.    A!B  Combination. The number of groups of B things taken A at a time.
  165.  
  166.  
  167.  
  168. ┐  Circle function
  169.  
  170.     ┐B  Pi times. B multiplied by pi is returned.
  171.  
  172.    A┐B  Trancendental function. B is operated on according to A:
  173.  
  174.        ¬7┐B  arctanh B
  175.        ¬6┐B  arccosh B
  176.        ¬5┐B  arcsinh B
  177.        ¬4┐B  (¬1+B*2)*.5
  178.        ¬3┐B  arctan B
  179.        ¬2┐B  arccos B
  180.        ¬1┐B  arcsin B
  181.         0┐B  (1-B*2)*.5
  182.         1┐B  sine B
  183.         2┐B  cosine B
  184.         3┐B  tangent B
  185.         4┐B  (1+B*2)*.5
  186.         5┐B  sinh B
  187.         6┐B  cosh B
  188.         7┐B  tanh B
  189.  
  190.  
  191. ?  Question mark
  192.  
  193.     ?B  Roll. Random integer from ^B.
  194.  
  195.    A?B  Deal. A random integers selected from ^B without repetition.
  196.  
  197.  
  198.  
  199. =  Equal sign
  200.  
  201.    A=B  Equals. 1 if the relation holds, 0 otherwise. A and B must be
  202.         both character or both numeric.
  203.  
  204.  
  205.  
  206.  
  207. Ñ  Not equal sign
  208.  
  209.    AÑB  Not equal to. 1 if the relation holds, 0 otherwise.
  210.         A and B must be both character or both numeric.
  211.  
  212.  
  213.  
  214.  
  215.  
  216. <  Less than sign
  217.  
  218.    A<B  Less than. 1 if the relation holds, 0 otherwise.
  219.         A and B must be numeric.
  220.  
  221.  
  222.  
  223.  
  224. ó  Less than or equal to sign
  225.  
  226.    AóB  Less than or equal to. 1 if the relation holds, 0 otherwise.
  227.         A and B must be numeric.
  228.  
  229.  
  230.  
  231.  
  232. >  Greater than sign
  233.  
  234.    A>B  Greater than. 1 if the relation holds, 0 otherwise.
  235.         A and B must be numeric.
  236.  
  237.  
  238.  
  239.  
  240. ñ  Greater than or equal to sign
  241.  
  242.    AñB  Greater than or equal to. 1 if the relation holds, 0 otherwise.
  243.         A and B must be numeric.
  244.  
  245.  
  246.  
  247.  
  248. ╗  Or sign
  249.  
  250.    A╗B  Or. Returns 1 if either A or B are 1, otherwise 0.
  251.         A and B must hold values of 0 or 1.
  252.  
  253.  
  254.  
  255.  
  256. ╝  And sign
  257.  
  258.    A╝B  And. Returns 1 if both A and B are 1, otherwise 0.
  259.         A and B must hold values of 0 or 1.
  260.  
  261.  
  262.  
  263.  
  264. ß  Nor sign
  265.  
  266.    AßB  Nor. Returns 0 if either A or B are 0, otherwise 1.
  267.         A and B must hold values of 0 or 1.
  268.  
  269.  
  270.  
  271.  
  272. Γ  Nand sign
  273.  
  274.    AΓB  Nand. Returns 0 if both A and B are 1, otherwise 1.
  275.         A and B must hold values of 0 or 1.
  276.  
  277.  
  278.  
  279.  
  280. ½  Epsilon
  281.  
  282.    A½B  Membership. Returns 1 if B is an element in scalar or vector A,
  283.         0 otherwise. Result is the same shape as B.
  284.  
  285.  
  286.  
  287.  
  288. á  Tilde
  289.  
  290.     áB  Not. Returns 1 if B=0, otherwise 0. B must be numeric with
  291.         values of 1 or 0.
  292.  
  293.  
  294.  
  295.  
  296. í  Equal underline can only be used as character data.
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304. ¿  Rho
  305.  
  306.     ¿B  Shape. Returns numeric vector holding the dimensions of B.
  307.  
  308.    A¿B  Reshape. Reorganize B to have the dimensions specified in A.
  309.         Reuse elements in B as often as needed to make the result.
  310.  
  311.  
  312. ,  Comma
  313.  
  314.     ,B  Ravel. Return B as a vector with all elements in order.
  315.  
  316.    A,B  Catenate. Returns B appended to the right of A.
  317.  
  318.  
  319.  
  320. °  Comma dash
  321.  
  322.    A°B  First dimension concatinate.
  323.         Same as "," but appends over the first dimension.
  324.  
  325.  
  326.  
  327.  
  328. ┤  Up arrow
  329.  
  330.    A┤B  Take. Returns the first A elements of B (last if A is negative).
  331.         Left arg is numeric vector with as many elements as rank of B.
  332.  
  333.  
  334.  
  335.  
  336. ¼  Down arrow
  337.  
  338.    A¼B  Drop. Returns B without the first A elements (last if A is negative).
  339.         Left arg is numeric vector with as many elements as rank of B.
  340.  
  341.  
  342.  
  343.  
  344. ^  Iota
  345.  
  346.     ^B  Interval. Returns B consecutive integers starting from ┬IO value.
  347.         B is a positive integer scalar.
  348.     
  349.    A^B  Index.
  350.         Returns positions in A where B is found, 1+^¿A if not found.
  351.  
  352. »  Iota underline can only be used as character data.
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360. /  Slash
  361.  
  362.    A/B  Compression. Squeeze out values of B where A is 0, keep where A is 1.
  363.  
  364.    ∙/B  Reduction. ∙ is scalar dyadic function. Apply function between
  365.         elements of B.
  366.  
  367. └  Slash dash
  368.  
  369.    A└B  First dimension compression. Same as / but works along 1st dimension
  370.  
  371.    ∙└B  First dimension reduction. Same as └ but works along 1st dimension
  372.  
  373.  
  374.  
  375. \  Backslash
  376.  
  377.    A\B  Expansion. Keep element of B where A is 1, insert fill where A is 0
  378.  
  379.    ∙\B  Scan. ∙ is scalar dyadic function. Each element of answer is result
  380.         of applying ∙ between preceeding elements of B.
  381.  
  382.  
  383. ╚  Backslash dash
  384.  
  385.    A╚B  First dimension expansion. Same as ╚ but along 1st dimension.
  386.  
  387.    ∙╚B  First dimension scan. Same as ∙╚ but along 1st dimension.
  388.  
  389.  
  390.  
  391. ≈  Circle bar
  392.  
  393.     ≈B  Reverse. Reverse the order of the elements in B.
  394.  
  395.    A≈B  Rotate. Take first A elements of B and move to the end.
  396.         If A is negative, take last A elements.
  397.  
  398.  
  399. ╙  Circle dash
  400.  
  401.     ╙B  First dimension reverse. Same as ≈ but along 1st dimension.
  402.  
  403.    A╙B  First dimension rotate. Same as ≈ but along 1st dimension.
  404.  
  405.  
  406.  
  407. ╒  Circle backslash
  408.  
  409.     ╒B  Transpose. Invert matrix B along main diagonal.
  410.  
  411.    A╒B  Generalized transpose. Transpose B according to ordering given
  412.         in A. A is a permutation of ^¿¿B.
  413.  
  414.  
  415. ÷  Tee
  416.  
  417.    A÷B  Encode. Representation of B in number system with radix A.
  418.    
  419.  
  420.  
  421.  
  422.  
  423. ║  Inverted tee
  424.  
  425.    A║B  Decode. Value of representation B in number system with radix A.
  426.  
  427.  
  428.  
  429.  
  430.  
  431. ▒  Domino can only be used as character data.
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439. ╓  Thorn
  440.  
  441.     ╓B  Format. Representation of B as a character matrix.
  442.  
  443.    A╓B  Dyadic format. Format numbers in B according to pairs of elements
  444.         in A. First element is field width, second is precision.
  445.  
  446.  
  447. ┼  Right cap can only be used as character data.
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455. σ  Squish quad can only be used as character data.
  456.  
  457.  
  458.  
  459.  
  460.  
  461.  
  462.  
  463. φ  Del bar
  464.  
  465.     φB  Grade down. Permutation which would put vector B in decending order.
  466.         Ex.  B[φB] will sort numeric vector B in decending order
  467.  
  468.  
  469.  
  470.  
  471. ε  Delta bar
  472.  
  473.     εB  Grade up. Permutation which would put vector B in ascending order.
  474.         Ex.  B[εB] will sort numeric vector B in ascending order
  475.  
  476.  
  477.  
  478.  
  479. │  Hydrant
  480.  
  481.     │B  Execute. Execute character vector B as an APL expression.
  482.         Ex. │'2+3'     2+│'3+4'
  483.  
  484.  
  485.  
  486.  
  487. ╜  Left cap can only be used as character data.
  488.  
  489.  
  490.  
  491.  
  492.  
  493.  
  494.  
  495. ì  Cap can only be used as character data.
  496.  
  497.  
  498.  
  499.  
  500.  
  501.  
  502.  
  503. ├  Cup can only be used as character data.
  504.  
  505.  
  506.  
  507.  
  508.  
  509.  
  510.  
  511. ╞  Jot
  512.  
  513.    A╞.∙B  Outer product. ∙ is a scalar dyadic function. Form a table of
  514.           combinations of A∙B. When A and B are vectors, result is matrix.
  515.  
  516.  
  517.  
  518.  
  519. .  Period
  520.  
  521.      .   Decimal point.
  522.  
  523.    A∙.∙B Inner Product. ∙ are scalar dyadic functions.
  524.          Ex.  A+.╨B yields matrix product of A and B
  525.  
  526.  
  527. ┴  Umlaut can only be used as character data.
  528.  
  529.  
  530.  
  531.  
  532.  
  533.  
  534.  
  535. ╥  Left arrow
  536.  
  537.    A╥B  Assignment. Gives symbol A the value in B. Can be embedded
  538.         within a larger expression, such as  2+A╥B+3
  539.  
  540.  
  541.  
  542.  
  543. ╘  Right arrow
  544.  
  545.     ╘   Bare branch. Abandon execution of chain of called functions.
  546.  
  547.     ╘B  Branch. Give control to line number B. If no such line, end
  548.         the function. If empty vector, drop through to next line.
  549.  
  550.  
  551. ╟  Lamp
  552.  
  553.    ╟   Comment. All characters to right of ╟ to end of line or next ╟
  554.        are ignored as a comment.
  555.  
  556.  
  557.  
  558.  
  559. ┘  Diamond can only be used as character data.
  560.  
  561.  
  562.  
  563.  
  564.  
  565.  
  566.  
  567. `  Accent can only be used as character data.
  568.  
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575. @  At sign can only be used as character data.
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583. #  Number sign can only be used as character data.
  584.  
  585.  
  586.  
  587.  
  588.  
  589.  
  590.  
  591. $  Dollar sign can only be used as character data.
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599. %  Percent sign can only be used as character data.
  600.  
  601.  
  602.  
  603.  
  604.  
  605.  
  606.  
  607. &  Ampersand can only be used as character data.
  608.  
  609.  
  610.  
  611.  
  612.  
  613.  
  614.  
  615. (  Left parenthesis
  616.  
  617.    Used for grouping in expressions to override the default right to left
  618.    order of execution.
  619.  
  620.  
  621.  
  622.  
  623. )  Right parenthesis
  624.  
  625.    Used for grouping in expressions to override the default right to left
  626.    order of execution.
  627.  
  628.  
  629.  
  630.  
  631. _  Underline can be used as character data, or as part of a symbol name.
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638.  
  639. [  Left bracket
  640.  
  641.    Used for indexing arrays. For vector B, B[X] is the Xth element of B.
  642.    First element in B is the ┬IOth element. For arrays, separate indexes
  643.    of each dimension with semicolons. Ex. for matrix B, B[A;B] is element
  644.    in row A column B. B[A;] specifies all columns in row A.
  645.  
  646.  
  647. ]  Right bracket
  648.  
  649.    Used for indexing arrays. See [.
  650.  
  651.  
  652.  
  653.  
  654.  
  655. {  Left brace can only be used as character data.
  656.  
  657.  
  658.  
  659.  
  660.  
  661.  
  662.  
  663. }  Right brace can only be used as character data.
  664.  
  665.  
  666.  
  667.  
  668.  
  669.  
  670.  
  671. ;  Semicolon
  672.  
  673.    Used to separate indexes when indexing arrays. See [.
  674.    Used to separate list elements. Ex. L╥(A;B) creates a two element
  675.    list (nested array) with array A as 1st element, B as 2nd.
  676.  
  677.  
  678.  
  679. :  Colon
  680.  
  681.    Used to form line labels in functions. Label must be symbol to left of
  682.    expression, followed by colon. Ex.  LABEL:2+2  is valid. In function,
  683.    label takes value of line number and can be used as branch target
  684.    as in ╘LABEL
  685.  
  686.  
  687. '  Quote
  688.  
  689.    Used to create character constants. Ex. Name╥'Michael'
  690.  
  691.  
  692.  
  693.  
  694.  
  695. "  Double quote can only be used as character data.
  696.  
  697.    To create character constants use single quote (')
  698.  
  699.  
  700.  
  701.  
  702.  
  703. ┌  Therefore can only be used as character data.
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711. ¬  Negative sign
  712.  
  713.    Used to left of number to indicate negative. Ex. ¬2  ¬3.14  3E¬12
  714.  
  715.  
  716.  
  717.  
  718.  
  719. ▄  Pound sign can only be used as character data.
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727. ▌  Cent sign can only be used as character data.
  728.  
  729.  
  730.  
  731.  
  732.  
  733.  
  734.  
  735. µ  Trademark can only be used as character data.
  736.  
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743. î   Alpha can only be used as character data.
  744.  
  745.  
  746.  
  747.  
  748.  
  749.  
  750.  
  751. ╖  Omega can only be used as character data.
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759. ü  Registered can only be used as character data.
  760.  
  761.  
  762.  
  763.  
  764.  
  765.  
  766.  
  767. δ  Synonym can only be used as character data.
  768.  
  769.  
  770.  
  771.  
  772.  
  773.  
  774.  
  775. ·  Delta
  776.  
  777.    Can be used as character data or as a character in a symbol name.
  778.  
  779.  
  780.  
  781.  
  782.  
  783. ⌐  Del can only be used as character data.
  784.  
  785.  
  786.  
  787.  
  788.  
  789.  
  790.  
  791. ∞  Locked del can only be used as character data.
  792.  
  793.  
  794.  
  795.  
  796.  
  797.  
  798.  
  799. ∩  Locked delta
  800.  
  801.    Can be used as a character in a symbol name. If so used, the
  802.    symbol automatically becomes hidden (name does not appear on lists).
  803.  
  804.  
  805.  
  806.  
  807. ╔  Left tack can only be used as character data.
  808.  
  809.  
  810.  
  811.  
  812.  
  813.  
  814.  
  815. ╛  Right tack can only be used as character data.
  816.  
  817.  
  818.  
  819.  
  820.  
  821.  
  822.  
  823. ⌡  I bar can only be used as character data.
  824.  
  825.  
  826.  
  827.  
  828.  
  829.  
  830.  
  831. ∙  Bullseye can only be used as character data.
  832.  
  833.  
  834.  
  835.  
  836.  
  837.  
  838.  
  839. ≡  Caret quad can only be used as character data.
  840.  
  841.  
  842.  
  843.  
  844.  
  845.  
  846.  
  847. ≥  Jot quad can only be used as character data.
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854.  
  855. «  Backslash quad can only be used as character data.
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863. ±  Quote quad
  864.  
  865.    ▓╥X displays value of X without going to the next line afterwards.
  866.    X╥▓ obtains a line of text from the user and returns it to X.
  867.  
  868.  
  869.  
  870.  
  871. ┬  Quad
  872.  
  873.    A╥┬  Quad input. Prompt (see ┬SF) and get expression from user.
  874.         Evaluated result of expression is passed to A.
  875.  
  876.    ┬╥A  Quad output. Displays value of A on screen. Can be embedded in
  877.         larger expressions to see intermediate results.
  878.  
  879.    Scroll to see information on system variables and functions.
  880.  
  881. quadnames  -  System variables and functions
  882.  
  883. variables  -  System variables
  884.  
  885. ┬ALX     Attention Latent Expression. Executed when execution interrupted.
  886. ┬AV      Atomic Vector. Contains all characters in APL set in ε order.
  887. ┬CT      Comparison Tolerance. Used to make very close numbers equal.
  888. ┬DM      Diagnostic Message. Holds last error report.
  889. ┬ELX     Exception Latent Expression. Executed when error occurs.
  890. ┬EN      Error Number. Holds code number of last error.
  891. ┬IO      Index Origin. Origin of ^, ε, φ, indexing
  892. ┬LC      Line Counter. Vector of line numbers now in execution.
  893. ┬LX      Latent Expression. Executed when workspace is loaded.
  894. ┬NLT     National Language Translation. 'ENGLISH'
  895. ┬PP      Printing Precision. Default precision for displaying numbers.
  896. ┬PR      Prompt Replacement. Character returned as ▓ prompt value.
  897. ┬PW      Page Width. Lines are wrapped to this width.
  898. ┬RL      Random Link. Controls random number generation (? functions)
  899. ┬SF      Evaluated Input Prompt. String issued during ┬ prompt.
  900. ┬SI      State Indicator. Shows functions and lines now in execution.
  901. ┬TS      Time Stamp. 7 numbers holding date, time, and day
  902. ┬TT      Terminal Type. 60=Macintosh
  903. ┬UL      User Load. Number of workspaces now open.
  904. ┬VERSION Interpreter Version. Version, edit, serial
  905. ┬WA      Workspace Available. Max amount of free memory.
  906.  
  907.  
  908. functions  -  System functions
  909.  
  910. R╥A ┬COPY B  Copy Objects named in B from Workspace named in A 
  911. R╥┬CR B      Canonical Representation of function named in B
  912. R╥┬DL B      Delay Execution for B seconds
  913. R╥A ┬EDIT B  Edit char vector B in window with title char vector A
  914. R╥┬EX B      Expunge (erase) object named in B
  915. R╥┬FX B      Fix Function from canonical representation B
  916. R╥┬HIDE B    Hide object named in B (name won't appear in lists)
  917. R╥┬LOAD B    Load Workspace named in B
  918. R╥┬LOCK B    Lock object named in B (can't edit or change value)
  919. R╥┬MAC B     Call Macintosh 68000 with machine code B, D0 yielding result
  920. R╥┬NC B      Name Classification of object named in B
  921. R╥┬NL B      Name List of class number B
  922. R╥A ┬PCOPY B Protected Copy objects A from workspace B
  923. ┬RESET       Reset State Indicator 
  924. R╥┬SAVE B    Save Workspace according to B
  925. R╥A ┬STOP B  Set Stop Vector on lines A of function named in B
  926. R╥A ┬TRACE B Set Trace Vector on lines A of function named in B
  927. R╥┬VR B      Vector Representation of function named in B
  928. R╥┬XLOAD B   ┬LOAD Without Executing Latent Expression 
  929.  
  930.  -- End of reference text --